home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 May / CHIP Turkiye Mayıs 1998.iso / internet / w32-252.exe / FFF.TXT < prev    next >
Text File  |  1997-01-01  |  3KB  |  67 lines

  1. ;
  2. ; Pegasus Mail System,
  3. ; Copyright (c) 1990-97, David Harris, All Rights Reserved.
  4. ;
  5. ; Form Fact File format (.FFF files).
  6. ;
  7. ; FFFs are examined by Pegasus Mail at startup and are used to determine
  8. ; what forms resources are available to users. WinPMail scans the following
  9. ; locations when looking for FFFs -
  10. ;
  11. ;    * The user's home mailbox
  12. ;    * The base directory (ie, where WINPMAIL.EXE resides)
  13. ;    * If present, the directory indicated by an FFF environment variable.
  14. ;
  15. ; An FFF may contain definitions for as many forms as you wish - in general
  16. ; terms, system-wide FFFs are best defined in a single file since this will
  17. ; speed the startup of the program, but the ability to have multiple FFFs
  18. ; can make for much simpler installation of new forms.
  19. ;
  20. ; -------------------------------------------------------------------------
  21. ; WARNING -- WARNING -- WARNING -- WARNING -- WARNING -- WARNING -- WARNING
  22. ; -------------------------------------------------------------------------
  23. ; WinPMail forms are executable code! You should never load forms onto your
  24. ; system unless you are absolutely certain of their pedigree, because they
  25. ; are a perfect vehicle for trojan horses.
  26. ; -------------------------------------------------------------------------
  27. ;
  28. ; The following keywords are recognized in this file:
  29. ;
  30. ; "Form name"      - The name which should appear in the form selector list
  31. ; "Form DLL"       - Full path to the DLL containing the form's code
  32. ; "Form type"      - COMPOSER, READER or ENCRYPTOR
  33. ; "Form flags"     - A bitmap value - see below
  34. ; "Form tagname"   - Form's registered tagname written into outgoing mail
  35. ; "Form data"      - Any custom data required by the form
  36. ; "End"            - End of definition - add the form to the form list.
  37. ;
  38. ; "Form triggers"  - only valid for READERS - what should activate the form
  39. ;
  40. ; "Form flags" is a bitmap composed of the following bits:
  41. ;
  42. ;  Mnemonic     Value   Meaning
  43. ;  ----------------------------------------------------------------
  44. ;  WPM_STARTUP    1     Load the extension when WinPMail starts up
  45. ;  WPM_NOLIST     2     Do not show in the "Extensions" window list
  46. ;  WPM_HIDDEN     4     Hide the parent MDI window on loading
  47. ;  WPM_LOGGING    8     Extension wants to receive logging events
  48. ;  WPM_ONEONLY   16     Only allow one running instance at any time
  49. ;  WPM_FIRSTRUN  32     Autoload extension on first-ever WinPMail run
  50. ;  WPM_USES_TCP  64     Extension requires TCP/IP services to run
  51. ;
  52. ;  The following flag values can be used by encryptor extensions:
  53. ;
  54. ;  CAN_ENCRYPT     256   Module can encrypt messages
  55. ;  CAN_DECRYPT     512   Module can decrypt messages
  56. ;  CAN_SIGN       1024   Module can add digital signatures to messages
  57. ;  CAN_VALIDATE   2048   Module can verify digital signatures
  58. ;  HAS_INTERFACE  4096   Module has a key management user interface
  59. ;  NEEDS_BURSTING 8192   Module requires one message per recipient
  60. ;
  61. ;  Various flags can be combined by adding (or ORing) the values
  62. ;  together - so to have a hidden extension which loads at startup,
  63. ;  is interested in logging events, and does not appear in the
  64. ;  "Extensions" window, you would use 1 + 2 + 4 + 8 = 15
  65. ;
  66.  
  67.